home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 11 / 0 / DISK1105.ZIP / DATA / P1983-01.IN < prev    next >
Text File  |  1988-06-01  |  4KB  |  123 lines

  1. '**********************************************************************
  2. '               test data for BEST-PLAN
  3. '       .....energy system demonstration problem.....
  4. '
  5. '**********************************************************************
  6.  
  7.         SECTION @10=fuel allocation
  8.  
  9.         COMBINE #101/hog fuel   (bdt)
  10.                 #102/sawdust    (bdt)
  11.         INTO    #105/hog boiler fuel;
  12.  
  13. '**********************************************************************
  14.  
  15.         SECTION @20=boiler steam production
  16.  
  17.         USE     #105
  18.         MAKE    #501/stream.hog boiler  =11.87
  19.                 #211/particulate(hog)   =1.7;
  20.  
  21.         USE     #103/black liquor
  22.         MAKE    #502/steam.rec boiler   =8.25
  23.                 #110/green.liquor       =2.33
  24.                 #212/particulate(rec)   =1.6;
  25.  
  26.         USE     #104/bunker oil
  27.         MAKE    #503/steam.pwr boiler   =4.08
  28.                 #213/particulate(pwr)   =0.0005;
  29.  
  30. '**********************************************************************
  31.  
  32.         SECTION @21=particulate pollution
  33.  
  34.         COMBINE #211 + #212 + #213
  35.         INTO    #210/total particulate;
  36.  
  37.  
  38. '**********************************************************************
  39.  
  40.         SECTION @30=steam allocation
  41.  
  42.         SPLIT   #501
  43.         INTO    #504/hog boiler turbine
  44.                 #314/hi.pressure.steam  ;
  45.  
  46.  
  47.         COMBINE #502 + #503
  48.         INTO    #505/rec.& pwr. turbine
  49.                 #315/hi.pressure.steam  ;
  50.  
  51. '.............turbine controls..................
  52.  
  53.         SET     #314=0.0,       #315=0.0;
  54.  
  55. '**********************************************************************
  56.  
  57.         SECTION @40=turbine elect. prod.
  58.  
  59.         USE     #504
  60.         FOR     #351/elect.gen.1        =52.0
  61.                 #311/hi.press.steam.1   =0.23
  62.                 #321/lo.press.steam.1   =0.38;
  63.  
  64.         USE     #505
  65.         FOR     #352/elect.gen.2        =52.0
  66.                 #312/hi.press.steam.2   =0.35
  67.                 #322/lo.press.steam.2   =0.26;
  68.  
  69.  
  70. '**********************************************************************
  71.  
  72.         SECTION @50=total steam&elec. prod.
  73.  
  74.         COMBINE #311 + #312 + #314 + #315
  75.         INTO    #310/hi.steam. mills
  76.                 #313/hi.press.(lost)lo.press.;
  77.  
  78. '.........................................................
  79.  
  80.         SET     #313=0.0;
  81.  
  82. '**********************************************************************
  83.  
  84.         SECTION @60=power allocation to mills
  85.  
  86.         COMBINE #321 + #322 + #313
  87.         INTO    #320/lo.steam. mills
  88.                 #330/lo.steam.mill.wp;
  89.  
  90.         COMBINE #351 + #352 + #360/outside.purchased.elec.
  91.         INTO    #340/elec. mill.wp
  92.                 #350/elec. mills;
  93.  
  94. '**********************************************************************
  95. '
  96. '                       prices and limits
  97. '......................................................................
  98.  
  99.         PRICES  #101=-90.0      ' hog fuel
  100.                 #102=-50.0      ' sawdust
  101.                 #103=-30.0      ' black liquor
  102.                 #104=-50.0      ' bunker oil
  103.  
  104.                 #360=-0.03;     ' outside purchased electricity
  105.  
  106. '       .....production minimum.......................
  107.  
  108.         MINIMUM #310=475.0      ' hi.pressure steam to mills
  109.                 #320=250.0      ' lo.pressure steam to mills
  110.                 #330= 60.0      ' lo.pressure steam to mill.wp
  111.  
  112.                 #340=20000.     ' elec. to mill.wp
  113.                 #350=70000.;    ' elec. to mills
  114.  
  115. '       .....production maximum.......................
  116.  
  117.         MAXIMUM #501=450.0      ' steam hog.boiler
  118.                 #502=775.0      ' steam rec.boiler
  119.                 #503=290.0;     ' steam pwr.boiler
  120.  
  121. '**********************************************************************
  122. 
  123.